home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / arcade.zip / ARCADE.DOC next >
Text File  |  1993-06-15  |  5KB  |  133 lines

  1. =============================================================================
  2.  
  3.                  Programming Object Oriented Arcade Games In Turbo C
  4.                                          By
  5.                                     David Conger
  6.  
  7. =============================================================================
  8.  
  9. (C) Copyright 1993 David Conger
  10.  
  11. Published By
  12. MicroSwift Software Solutions
  13. 348 Pyrite Dr.
  14. Rio Rancho, NM 87124
  15.  
  16. -----------------------------------------------------------------------------
  17.  
  18.                                        CONTENTS
  19. I.   This Is A Book
  20. II.  What This Book Does For You
  21. III.   Installing The Software
  22. IV.  Troubleshooting The Software
  23.  
  24. -----------------------------------------------------------------------------
  25.  
  26. I.   This Is A Book
  27. This software is an interactive book. It uses the computer as a personal
  28. tutor. That's nice, because this tutor is there whenever you want it, and it 
  29. teaches you at your own pace.
  30.  
  31. Most of the book is text-based. However there are some portions of it that
  32. require a graphics adaptor. This is quite natural given the subject of the
  33. book. This software supports EGA, VGA, and SVGA compatible displays. CGA is
  34. not supported.
  35.  
  36. -----------------------------------------------------------------------------
  37.  
  38. II.  What This Book Does For You
  39. Programming Object Oriented Arcade Games In Turbo C is designed to do the 
  40. following:
  41.  
  42. 1.   Teach the fundamentals of animation.
  43. 2.   Help the reader apply animation techniques to writing arcade games.
  44. 3.   Teach the underlying principles of object oriented programming.
  45. 4.   Help the reader make an easier transition to object oriented languages
  46.      like C++.
  47.  
  48. Programming Object Oriented Arcade Games In Turbo C was written by a college
  49. instructor who teaches both C and C++. It is meant not only to help the reader
  50. write arcade games, but to teach a method of writing them in an object oriented
  51. manner. This can be done in spite of the fact that the C language is used 
  52. rather than C++.
  53.  
  54. The method of C programming presented in this text helps C programmers more
  55. easily make the transition to object oriented languages like C++. It is a
  56. classroom-tested methodology that has been proven to work.
  57.  
  58. All of the basic principles of animation are presented and explained in this
  59. book. A brief discussion of 3D simulation is also included. The source code
  60. for the Space Attackers game that comes with the registered version of the 
  61. software demonstrates all of the concepts presented in the book.
  62.  
  63. The registered version of this software presents a detailed line-by-line
  64. explanation of all of the source code for the example Space Attackers game.
  65. Nowhere else will you find such an in-depth presentation of the techniques of
  66. writing arcade-style games.
  67.  
  68. ---------------------------------------------------------------------------
  69.  
  70. III. Installing The Software
  71. The software can be installed on your hard disk using the steps below.
  72.  
  73. 1.   Insert the disk containing Programming Object Oriented Arcade Games In 
  74.      Turbo C into one of the floppy drives of your computer.
  75. 2.   Make the drive that you want to install the software to the current drive.
  76.      For instance, if you are installing to the C drive, type C: and the DOS
  77.      prompt. If you are installing to the D drive, type D:
  78. 3.   Create a directory for the tutorial using the DOS MD (make directory) 
  79.      command. EXAMPLE:  MD ARCADE
  80. 4.   Make the directory that you want to install the tutorial into the current
  81.      directory. EXAMPLE: CD ARCADE
  82. 5.   At the DOS prompt type
  83.      copy A:\MS.EXE
  84.      if the program disk is in the A drive, or
  85.      copy B:\MS.EXE
  86.      if the program disk is in the B drive.
  87. 6.   The tutorial is contained in a compressed format. This file is self-
  88.      extracting. To uncompress it, simply type MS at the DOS prompt.
  89.  
  90. The tutorial will uncompress itself. It can be run by typing the word
  91. ARCADE at the DOS prompt.
  92.  
  93. The first time you run the tutorial, please be sure and select the section
  94. entitled How To Use This Tutorial.
  95.  
  96. WARNING: Before you use this tutorial, the COMSPEC environment variable MUST
  97. be set to the path of the DOS file COMMAND.COM. For instructions on how to do
  98. this, please see Troubleshooting The Software.
  99.  
  100. -----------------------------------------------------------------------------
  101.  
  102. IV.  Troubleshooting The Software
  103. If the tutorial doesn't run properly it may be for one of two reasons.
  104.  
  105. 1.   There is not enough memory in the computer.
  106. 2.   The tutorial can't find the COMSPEC environment variable in your DOS
  107.      environment.
  108.  
  109. The first problem can be rectified by loading fewer programs, TSRs, and 
  110. device drivers into memory. If your computer has less than 512K of RAM, you
  111. might consider installing more memory.
  112.  
  113. The second problem can be solved by specifying the path to the DOS file
  114. COMMAND.COM in your AUTOEXEC.BAT file. 
  115.  
  116. EXAMPLE 1:
  117. If COMMAND.COM is in the root directory of the C drive, add the line
  118.  
  119. SET COMSPEC=C:\COMMAND.COM
  120.  
  121. into your AUTOEXEC.BAT file.
  122.  
  123. EXAMPLE 2:
  124. If COMMAND.COM is in the DOS directory of the D drive, add the line
  125.  
  126. SET COMSPEC=D:\DOS\COMMAND.COM
  127.  
  128. into your AUTOEXEC.BAT file.
  129.  
  130. Re-boot your computer so that the change can take effect.
  131.  
  132. ==================================END========================================
  133.